
  :root {
    --accent:#0b7fcf;
    --radius:12px;
  }
  *{box-sizing:border-box;margin:0;padding:0}
 
  /* UPDATED WRAPPER */
  .vcet-website-wrap{
    max-width:1400px;
    margin:auto;
  }

  /* ================= SLIDER ================= */
  .vcet-website-slider{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius);
    background:#000;
  }

  .vcet-website-track{
    display:flex;
    transition:transform .55s ease;
  }

  /* ------- DESKTOP SLIDE ------- */
  .vcet-website-slide{
    min-width:100%;
    height:450px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
  }

  /* ------- MOBILE IMAGE ------- */
  .vcet-website-slide img.vcet-website-mobile-img{
    display:none;
    width:100%;
    height:auto;
  }

  /* ====== ARROWS ====== */
  .vcet-website-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    background:rgba(0,0,0,0.45);
    color:#fff;
    border:none;
    border-radius:7px;
    font-size:28px;
    cursor:pointer;
    z-index:100;
  }
  .vcet-website-arrow.left{ left:12px; }
  .vcet-website-arrow.right{ right:12px; }

  /* ====== DOTS ====== */
  .vcet-website-dots{
    position:absolute;
    bottom:14px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0,0,0,0.45);
    padding:8px 14px;
    border-radius:14px;
    display:flex;
    gap:8px;
    z-index:150;
  }
  .vcet-website-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,0.7);
    cursor:pointer;
  }
  .vcet-website-dot.active{
    background:#fff;
  }

  /* ================= MOBILE VIEW ================= */
  @media(max-width:768px){
    .vcet-website-slide{
      height:auto;
      background-size:contain !important;
      background-repeat:no-repeat !important;
    }
    .vcet-website-slide img.vcet-website-mobile-img{
      display:block;
    }
  }
